--- import Show from '../../components/Show.astro'; import Layout from '../../layouts/Layout.astro'; import fetchAPI from '../../lib/api'; import type { IUser } from '../../types.js'; const { id } = Astro.params as { id: string }; const user = (await fetchAPI(`user/${id}`)) as IUser; ---

User not found.

User : {user.id}

  • Created: {user.created}
  • Karma: {user.karma}
  • {' '}

submissions |{' '} comments